home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / northc / example2.lzh / mini-hello / hello.c < prev    next >
C/C++ Source or Header  |  1990-08-30  |  458b  |  21 lines

  1. /*  (c) 1990 S.Hawtin.
  2.   Permission is granted to copy this file provided
  3.    1) It is not used for commercial gain
  4.    2) This notice is included in all copies
  5.    3) Altered copies are marked as such
  6.  
  7.   No liability is accepted for the contents of the file.
  8.  
  9. */
  10.  
  11. /* Example small hello world */
  12.  
  13. typedef char *APTR;
  14.  
  15. extern APTR _stdout;
  16.  
  17. _main()
  18.    {/* Just use the Amiga function to say hello to the world */
  19.     Write(_stdout,"Hello world\a\n",13L);
  20.     }
  21.